home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / AIFF.idl < prev    next >
Text File  |  1996-05-01  |  3KB  |  93 lines

  1. /*
  2.      File:        AIFF.idl
  3.  
  4.      Contains:    Definition of AIFF file format components.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __AIFF_IDL__
  19. #define __AIFF_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27.  
  28. #ifdef __SOMIDL__
  29.  
  30. typedef unsigned long            ID;
  31.  
  32. typedef short                    MarkerIdType;
  33.  
  34. typedef SOMLargeStruct            ChunkHeader;                /* Derived from a struct of 8 bytes in size */
  35.  
  36. typedef SOMLargeStruct            ContainerChunk;                /* Derived from a struct of 12 bytes in size */
  37.  
  38. typedef SOMLargeStruct            FormatVersionChunk;            /* Derived from a struct of 12 bytes in size */
  39.  
  40. typedef OpaquePtr                FormatVersionChunkPtr;        /* Substituted OpaquePtr for ``FormatVersionChunk*'' */
  41.  
  42. typedef SOMLargeStruct            CommonChunk;                /* Derived from a struct of 26 bytes in size */
  43.  
  44. typedef OpaquePtr                CommonChunkPtr;                /* Substituted OpaquePtr for ``CommonChunk*'' */
  45.  
  46. typedef SOMLargeStruct            ExtCommonChunk;                /* Derived from a struct of 31 bytes in size */
  47.  
  48. typedef OpaquePtr                ExtCommonChunkPtr;            /* Substituted OpaquePtr for ``ExtCommonChunk*'' */
  49.  
  50. typedef SOMLargeStruct            SoundDataChunk;                /* Derived from a struct of 16 bytes in size */
  51.  
  52. typedef OpaquePtr                SoundDataChunkPtr;            /* Substituted OpaquePtr for ``SoundDataChunk*'' */
  53.  
  54. typedef SOMLargeStruct            Marker;                        /* Derived from a struct of 262 bytes in size */
  55.  
  56. typedef SOMLargeStruct            MarkerChunk;                /* Derived from a struct of 272 bytes in size */
  57.  
  58. typedef OpaquePtr                MarkerChunkPtr;                /* Substituted OpaquePtr for ``MarkerChunk*'' */
  59.  
  60. typedef SOMLargeStruct            AIFFLoop;                    /* Derived from a struct of 6 bytes in size */
  61.  
  62. typedef SOMLargeStruct            InstrumentChunk;            /* Derived from a struct of 28 bytes in size */
  63.  
  64. typedef OpaquePtr                InstrumentChunkPtr;            /* Substituted OpaquePtr for ``InstrumentChunk*'' */
  65.  
  66. typedef SOMLargeStruct            MIDIDataChunk;                /* Derived from a struct of 9 bytes in size */
  67.  
  68. typedef OpaquePtr                MIDIDataChunkPtr;            /* Substituted OpaquePtr for ``MIDIDataChunk*'' */
  69.  
  70. typedef SOMLargeStruct            AudioRecordingChunk;        /* Derived from a struct of 32 bytes in size */
  71.  
  72. typedef OpaquePtr                AudioRecordingChunkPtr;        /* Substituted OpaquePtr for ``AudioRecordingChunk*'' */
  73.  
  74. typedef SOMLargeStruct            ApplicationSpecificChunk;    /* Derived from a struct of 13 bytes in size */
  75.  
  76. typedef OpaquePtr                ApplicationSpecificChunkPtr; /* Substituted OpaquePtr for ``ApplicationSpecificChunk*'' */
  77.  
  78. typedef SOMLargeStruct            Comment;                    /* Derived from a struct of 9 bytes in size */
  79.  
  80. typedef SOMLargeStruct            CommentsChunk;                /* Derived from a struct of 20 bytes in size */
  81.  
  82. typedef OpaquePtr                CommentsChunkPtr;            /* Substituted OpaquePtr for ``CommentsChunk*'' */
  83.  
  84. typedef SOMLargeStruct            TextChunk;                    /* Derived from a struct of 9 bytes in size */
  85.  
  86. typedef OpaquePtr                TextChunkPtr;                /* Substituted OpaquePtr for ``TextChunk*'' */
  87.  
  88.  
  89. #endif /* __SOMIDL__ */
  90.  
  91. #endif /* __AIFF_IDL__ */
  92.  
  93.